Ignore:
Timestamp:
09/26/2007 03:46:49 PM (19 years ago)
Author:
David Owen <dsowen@…>
branch-nick:
tui
revision id:
dsowen@fugue88.ws-20070926154649-urstxn96pa6a77tc
Message:

Started adding form stuff.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tag/last-working/Makefile

    r2 r4  
    1 menu2.so: menu2.c
    2         rm -f menu2.so
    3         gcc -shared -fPIC -o menu2.so menu2.c -lmenu -Wall -pedantic
     1all: menu2.so form2.so
     2
     3menu2.so: LIBS := -lmenu
     4
     5form2.so: LIBS := -lform
     6
     7%.so: %.c
     8        rm -f $@
     9        gcc -shared -fPIC -o $@ $< $(LIBS) -Wall -pedantic
Note: See TracChangeset for help on using the changeset viewer.