Skip to content

Commit

Permalink
heckler: sudo remove unneeded make goals
Browse files Browse the repository at this point in the history
  • Loading branch information
abertschi committed Apr 19, 2024
1 parent b51d393 commit 2a2d0c3
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions userspace/sudo/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,10 @@ CC = gcc
CFLAGS =

.PHONY: all
all: profile_sample profile_pam libsample.so sample_consumer
all: profile_pam

CFLAGS=-g -I.

sample_consumer: sample_consumer.c libsample.so
$(CC) $(CFLAGS) $^ -o $@ -lsample -L .

libsample.so: sample.c
$(CC) -o $@ $^ -shared -fPIC


profile_sample: profile_sample.c virt_to_phy.c
$(CC) $(CFLAGS) $^ -o $@


profile_pam: profile_pam.c virt_to_phy.c
$(CC) $(CFLAGS) $^ -o $@

Expand Down

0 comments on commit 2a2d0c3

Please sign in to comment.